home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / ODSessn.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  997 b   |  50 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _ODSESSN_
  4. #define _ODSESSN_
  5.  
  6. #ifndef _ODSESSNB_
  7. #include "ODSessnB.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface   ODSession;
  15.  
  16. //==============================================================================
  17. // ODSession
  18. //==============================================================================
  19.  
  20. interface ODSession :  ODBaseSession
  21. {
  22.    void    InitSession();
  23.    void    GetUserName(out ODIText name);
  24.  
  25.   //#---------------------------------
  26.   //# Data Interchange
  27.  
  28.    ODUpdateID UniqueUpdateID();
  29.  
  30. #ifdef __SOMIDL__
  31.     implementation
  32.     {
  33.         majorversion = 1; minorversion = 0;
  34.  
  35.         functionprefix = ODSession;
  36.  
  37.         override:
  38.             Purge;
  39.     
  40.         releaseorder:
  41.             UniqueUpdateID,
  42.             GetUserName,
  43.             InitSession;
  44.   };
  45. #endif
  46. };
  47.  
  48.  
  49. #endif // _ODSESSN_
  50.